home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960715-19961006 / 000158_news@columbia.edu _Thu Aug 8 09:08:24 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id JAA04716 for <kermit.misc@watsun.cc.columbia.edu>; Thu, 8 Aug 1996 09:08:24 -0400 (EDT)
  3. Received: (from news@localhost) by newsmaster.cc.columbia.edu (8.7.5/8.7.3) id JAA22849 for kermit.misc@watsun; Thu, 8 Aug 1996 09:08:14 -0400 (EDT)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: MS-KERMIT 3.14 server "REMOTE DELETE" problem
  8. Date: 8 Aug 1996 13:07:47 GMT
  9. Organization: Columbia University
  10. Lines: 35
  11. Message-ID: <4ucor3$4j5@apakabar.cc.columbia.edu>
  12. References: <B.A.MCCAULEY.96Aug8114643@wcl-l.bham.ac.uk>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <B.A.MCCAULEY.96Aug8114643@wcl-l.bham.ac.uk>,
  16.  <B.A.McCauley@bham.ac.uk> wrote:
  17. : This newsgroup is comp.PROTOCOLS.kermit.misc and yet very few of the
  18. : questions here are actually questions about the Kermit protocol!
  19. The newsgroup name is... "historical".
  20.  
  21. : I have a PC running MS-KERMIT 3.14 server to provide access to a
  22. : filesystem.  The application talking to this server is a home-grown
  23. : implementation of the Kermit protocols.  When the application attempts
  24. : to delete a file using the "REMOTE DELETE" command I get a problem if
  25. : any of the components of the filename start with a digit.  I assume
  26. : this is because the backslash-digit sequence is being interpreted as a
  27. : control character.
  28. Perhaps, but by whom?
  29.  
  30. : Is this a bug in MS kermit or should my implementation of the kermit
  31. : mangle any backslashes in remote command arguments?  If I should be
  32. : mangling what rules should I be using?
  33. When sending a server command from C-Kermit or MS-DOS Kermit to a Kermit
  34. server that runs on a DOS-like file system, you have to double the
  35. backslashes in your commands, to force the *command interpreter* to take
  36. the backslash literally.
  37.  
  38. In the Kermit *protocol*, there is nothing special about backslashes.
  39. Here are the packets from a successful REMOTE DELETE operation:
  40.  
  41.   ^A1 GE,c:\tmp\123.xT
  42.   ^A3 Ydel c:\tmp\123.xL
  43.  
  44. As you can see, the backslashes are backslashes. 
  45.  
  46. - Frank